home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group95b.txt / 000096_icon-group-sender _Sun Jul 23 02:53:43 1995.msg < prev    next >
Internet Message Format  |  1995-09-18  |  2KB

  1. Received: by cheltenham.cs.arizona.edu; Mon, 24 Jul 1995 09:59:23 MST
  2. Date: Sun, 23 Jul 1995 02:53:43 -0500
  3. From: jeffery@runner.jpl.utsa.edu (Clinton L. Jeffery)
  4. Message-Id: <9507230753.AA06175@runner.utsa.edu>
  5. To: idealord@dorsai.dorsai.org
  6. Cc: icon-group@cs.arizona.edu
  7. In-Reply-To: <DC18Lp.IsG@dorsai.org> (idealord@dorsai.dorsai.org)
  8. Subject: Re: Icon for X-Windows Problems
  9. Content-Length: 1146
  10. Errors-To: icon-group-errors@cs.arizona.edu
  11.  
  12.  
  13.    [Jeff Harrington has been sharing a difficulty in running version 9
  14.    graphics programs on his Linux platform.]
  15.  
  16.    In every case of failure, the program is not finding an important
  17.    argument.  It's always a null while expecting an integer or procedure.
  18.  
  19.    Seems like some kind of communication problem between the X-Windows 
  20.    server and iconx?
  21.  
  22. No, you get this Icon error message when you are calling a procedure that
  23. doesn't exist or wasn't linked in.  From the line # and description in the
  24. error message you should be able to tell us exactly what procedure was
  25. being called.
  26.  
  27. >From your earlier messages we know you've built binaries with graphics
  28. enabled, so my guess is you've got some funky problem with your Icon
  29. procedure library.
  30.  
  31. Try the program
  32.  
  33. procedure main()
  34.   w := open("hello", "g") | stop("can't open window")
  35.   write(w, "hello, world")
  36.   Event(w)
  37. end
  38.  
  39. to see if you have a working iconx and a valid DISPLAY environment variable.
  40. There is tracing you can turn on, and other ways to find out more about
  41. what is going on, if you need it.
  42.  
  43. Clint Jeffery
  44. jeffery@ringer.cs.utsa.edu
  45. The University of Texas at San Antonio
  46.